home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / misc-headers / sys⁄unistd.h < prev    next >
Encoding:
Text File  |  1994-05-15  |  279 b   |  15 lines  |  [TEXT/EMAC]

  1. /*
  2.  * sys/unistd.h
  3.  */
  4.  
  5. #ifndef __SYS_UNISTD__
  6. #define __SYS_UNISTD__
  7.  
  8. /* For access() */
  9. #define    F_OK        0    /* does file exist */
  10. #define    X_OK        1    /* is it executable by caller */
  11. #define    W_OK        2    /* is it writable by caller */
  12. #define    R_OK        4    /* is it readable by caller */
  13.  
  14. #endif
  15.